I just wrote a basic assembly-level code coverage tool in about 3 hours. That's insane. Check it out!
I run my code on this C++:
void testFunc()
{
int foo = 0x00;
int bar = 0x00;
if (foo)
{
// This is a code block.
bar++;
}
return ;
}
and compile it. I run my code-coverage util on that function, and I get this:
(
Read more... )